4.4.1. Example — retrieving server properties

>>Request

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
  <SOAP-ENV:Header/>
  <SOAP-ENV:Body>
    <ns2:getProperties xmlns:ns2="http://docs.oasis-open.org/ws-calendar/ns/soap"
        xmlns:ns3="urn:ietf:params:xml:ns:icalendar-2.0">
      <ns2:href>/</ns2:href>
    </ns2:getProperties>
  </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

>>Response

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
  <SOAP-ENV:Header />
  <SOAP-ENV:Body>
    <ns2:getPropertiesResponse
      xmlns:ns2="http://docs.oasis-open.org/ws-calendar/ns/soap"
      xmlns:ns4="urn:ietf:params:xml:ns:icalendar-2.0"
      id="0" >
      <ns2:href>/</ns2:href>
      <ns2:lastModifiedDateTime>
        <ns2:dateTime>2012-01-04T18:21:14Z</ns2:dateTime>
      </ns2:lastModifiedDateTime>
      <ns2:supportedCalendarComponentSet>
        <ns4:vevent />
        <ns4:vtodo />
        <ns4:vavailability />
      </ns2:supportedCalendarComponentSet>
      <ns2:resourceType>
        <ns2:collection />
      </ns2:resourceType>
      <ns2:supportedFeatures>
        <ns2:calendarAccessFeature />
      </ns2:supportedFeatures>
      <ns2:maxInstances>
        <ns2:integer>1000</ns2:integer>
      </ns2:maxInstances>
      <ns2:maxResourceSize>
        <ns2:integer>100000</ns2:integer>
      </ns2:maxResourceSize>
    </ns2:getPropertiesResponse>
  </SOAP-ENV:Body>
</SOAP-ENV:Envelope>